/* Header Styles */
.site-header {
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    line-height: 1;
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.desktop-nav a:hover {
    color: #4ADE80;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ADE80;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Dropdown Navigation Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    /* color: #fff !important; */
}

/* Default state for nav-menu */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 6px;
    transition: transform 0.3s ease;
    color: #fff;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Override the default link underline effect for dropdown toggles */
.dropdown .dropdown-toggle::before {
    display: none !important;
}

.desktop-nav .nav-menu {
    display: block !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none !important;
    padding: 15px 0;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.desktop-nav .dropdown.active .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block !important;
    padding: 12px 20px;
    color: #2c3e50 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #4ADE80;
    padding-left: 25px;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 30px 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a {
    display: block;
    padding: 18px 25px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.mobile-nav a:hover {
    background: linear-gradient(90deg, #f8f9fa 0%, #e3f2fd 100%);
    color: #1976d2;
    padding-left: 35px;
    transform: translateX(5px);
}

.mobile-nav a.active {
    background: linear-gradient(90deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    border-left: 4px solid #4ADE80;
}

/* Mobile dropdown styles */
.mobile-nav .dropdown-toggle {
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.mobile-nav .dropdown-toggle::after {
    color: #2c3e50;
    font-size: 0.8em;
}

.mobile-nav .nav-menu {
    display: block;
    position: static;
    background: #f8f9fa;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border: none;
    list-style: none;
}

.mobile-nav .dropdown.active .nav-menu {
    max-height: 300px;
}

.mobile-nav .dropdown-item {
    padding: 12px 20px;
    margin-left: 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.mobile-nav .dropdown-item:hover {
    background: #e8f5e8;
    color: #4ADE80;
    padding-left: 30px;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    background: #429d52;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer .container {
    max-width: 800px;
    margin: 0 auto;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

.footer a {
    color: #fff;
    text-decoration: underline;
}

.footer-line {
    height: 1px;
    background-color: #ccc;
    margin: 20px 0;
}

.whatsapp-button {
    position: fixed;
    bottom: 85px;
    right: 25px;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.whatsapp-button img {
    width: 28px;
    height: 28px;
}

.telegram-button {
    position: fixed;
    bottom: 150px;
    right: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
	z-index: 99999;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Override desktop dropdown styles on mobile */
    .mobile-nav .dropdown .nav-menu {
        display: block !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #f8f9fa !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        border: none !important;
        min-width: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mobile-nav .dropdown.active .nav-menu {
        max-height: 300px !important;
    }
    
    .whatsapp-button {
        right: 15px;
        bottom: 75px;
        width: 54px;
        height: 54px;
    }

    .telegram-button {
        right: 15px;
        bottom: 135px;
        width: 54px;
        height: 54px;
    }
}


/* .telegram-button img {
    width: 28px;
    height: 28px;
} */